00001
00004 package irc;
00005
00006 public class JvnSentence extends jvn.JvnObjectImpl implements java.io.Serializable {
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 public
00018 JvnSentence()
00019 throws jvn.JvnException
00020 {
00021 super((java.io.Serializable)(new Sentence()));
00022 }
00023
00024
00025 @jvn.JvnRead()
00026 public
00027 java.lang.String
00028 read()
00029 throws jvn.JvnException
00030 {
00031 if (__containedObject != null) {
00032 java.lang.String returnVal;
00033 this.jvnLockRead();
00034 returnVal = ((Sentence)__containedObject).read();
00035 this.jvnUnLock();
00036 return returnVal;
00037 }
00038 else {
00039 throw new jvn.JvnException("JvnSentence instance " + this + " not initialized !");
00040 }
00041 }
00042
00043
00044 @jvn.JvnWrite()
00045 public
00046 void
00047 write(java.lang.String param0)
00048 throws jvn.JvnException
00049 {
00050 if (__containedObject != null) {
00051 this.jvnLockWrite();
00052 ((Sentence)__containedObject).write(param0);
00053 this.jvnUnLock();
00054 }
00055 else {
00056 throw new jvn.JvnException("JvnSentence instance " + this + " not initialized !");
00057 }
00058 }
00059
00060
00061 }